    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}



:root {
  --primary-color: #4f46e5;
  --accent-color: #ef4444;
  --text-color: #C8F8F7;
  --background-color:#52727D;
  --card-color: #ffffff;
  --border-color: #3B5963;
  --focus-color: #4f46e5;
  --error-color: #ef4444;
  --signal-color: #D3076D;
  --signal-hover: #7c3aed;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}


.icone-p{
  
    border-radius: 50%; 
    position: absolute;
    z-index: 1000;
    right: 70px;
    top: 30px;
    border: 5px solid var(--background-color);
    object-fit: cover; 
    
animation: pulse 3.8s infinite; 
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.perfil{
width: 45px; 
    height: 45px;
   
}




.container {
  width: 100%;
  max-width: 500px;
  padding: 20px;
}

.app-card {

 padding-top: 0 !important;
  transition: transform 0.3s ease;
}

.app-header {
  text-align: center;
  margin-bottom: 24px;
}

.user-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
}

#user-email {
  margin-right: 12px;
  color: var(--text-color);
  background: #1f2937;
}

#logout-btn {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

#logout-btn:hover {
  background-color: var(--error-color);
  color: white ;
  border-color: var(--error-color);
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.img-loo{
  width: 120px;
  height: 100px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0%,
  100% {
    
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.app-header h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.app-header p {
  color: #6b7280;
  font-size: 14px;
}

.form-container {
  margin-bottom: 24px;
}

.input-group {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

#selectedcontent{
  
backdrop-filter: bluer(4px);
background: transparent;
width: 40%;
border-left: 2px solid var(--border-color) !important;
border-right: 2px solid var(--border-color) !important;
border:0;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #C8F8F7;
}

h2{
color: #C8F8F7;
}

select,
input {
  width: 100%;
  padding: 12px 16px;
  
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid #1D353DB3;
background-color: #3B5963;
backdrop-filter: bluer(4px);
color: var(--text-color);
  transition: border-color 0.3s, box-shadow 0.3s;
}

input[readonly] {
  background-color: #f9fafb;
  cursor: not-allowed;
}

select:focus,
input:focus {
  outline: none;
  border-color: var(--focus-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.select-button-group {
  display: flex;
  gap: 12px;
}

.select-button-group select {
  flex: 1;
}

.generate-btn {
  padding: 12px 24px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.generate-btn:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
}

.generate-btn:active {
  transform: translateY(0);
}

.results-container {
  margin-top: 32px;
}

.result-section {
  margin-bottom: 24px;
}

.result-section h2 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  text-align: center;
  color: #9CF99DFC;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style-type: none;
  padding: 0;
}

.signal-list li {
  flex: 1 0 calc(25% - 8px);
  min-width: 60px;
  padding: 8px 4px;
  background-color: var(--signal-color);
  color: #F5F5F5F0;
  backdrop-filter: bluer(4px);
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s;
}

.signal-list li:hover {
  background-color: var(--signal-hover);
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* From Uiverse.io by AqFox */ 
.custom-btn {
  width: 130px;
  height: 40px;
  color: #CDCDD2;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
  font-size: 15px;
}

.btn-2 {
  background: #4f46e5;
  background: linear-gradient(0deg, #DA4D4D 0%, #FA5151 100%);
  border: none;
}

.btn-2:before {
  height: 0%;
  width: 2px;
}

.btn-2:hover {
  box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .5), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .4);
}




/* Responsive */
@media (max-width: 480px) {
  .container {
    padding: 16px;
  }

  .app-card {
    padding: 24px;
  }

  .signal-list li {
    flex: 1 0 calc(33.333% - 8px);
  }
}
